home *** CD-ROM | disk | FTP | other *** search
- function FSelectableListClass()
- {
- this.init();
- }
- function(index, label, data)
- {
- if(index < 0 || !this.enable)
- {
- return undefined;
- }
- "label";
- label;
- "data";
- data;
- 2;
- }
- FSelectableListClass.prototype = new FUIComponentClass();
- FSelectableListClass.prototype.init = function()
- {
- var _loc1_ = this;
- super.init();
- _loc1_.enable = true;
- _loc1_.selected = new Array();
- _loc1_.topDisplayed = _loc1_.numDisplayed = 0;
- _loc1_.lastSelected = 0;
- _loc1_.tabChildren = false;
- if(_loc1_._name != undefined)
- {
- _loc1_.dataProvider = new DataProviderClass();
- _loc1_.dataProvider.addView(_loc1_);
- }
- };
- FSelectableListClass.prototype;
- "addItemAt";
-